home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part2 / cat3 / armac.3 < prev    next >
Text File  |  1999-09-16  |  844b  |  67 lines

  1.  
  2.  
  3.  
  4. armac(1)                       Scilab Function                       armac(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   armac - Scilab description of an armax process
  13.  
  14. CALLING SEQUENCE
  15.   [ar]=armac(a,b,d,ny,nu,sig)
  16.  
  17. PARAMETERS
  18.   a=[Id,a1,..,a_r]    : is a matrix of size (ny,r*ny)
  19.   b=[b0,.....,b_s]    : is a matrix of size (ny,(s+1)*nu)
  20.   d=[Id,d1,..,d_p]    : is a matrix of size (ny,p*ny);
  21.   ny                  : dimension of the output  y
  22.   nu                  : dimension of the output  u
  23.   sig                 : a matrix of size (ny,ny)
  24.  
  25. DESCRIPTION
  26.   this function creates a description as a list of an  ARMAX process
  27.  
  28.      A(z^-1)y= B(z^-1)u + D(z^-1)sig*e(t)
  29.  
  30.  
  31.  
  32. EXAMPLE
  33.   a=[1,-2.851,2.717,-0.865].*.eye(2,2)
  34.   b=[0,1,1,1].*.[1;1];
  35.   d=[1,0.7,0.2].*.eye(2,2);
  36.   sig=eye(2,2);
  37.   ar=armac(a,b,d,2,1,sig);
  38.   armap(ar);
  39.  
  40. SEE ALSO
  41.   armap
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.